home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2006 April / DPPRO0406DVD.ISO / Essentials / Programming / Eclipse SDK / eclipse-SDK-3.1.1-win32.exe / eclipse / plugins / org.eclipse.pde.build_3.1.0 / templates / build.properties next >
Encoding:
Text File  |  2005-09-29  |  5.1 KB  |  150 lines

  1. ###############################################################################
  2. # Copyright (c) 2003, 2005 IBM Corporation and others.
  3. # All rights reserved. This program and the accompanying materials
  4. # are made available under the terms of the Eclipse Public License v1.0
  5. # which accompanies this distribution, and is available at
  6. # http://www.eclipse.org/legal/epl-v10.html
  7. # Contributors:
  8. #     IBM Corporation - initial API and implementation
  9. ###############################################################################
  10. #####################
  11. # Parameters describing how and where to execute the build.
  12. # Typical users need only update the following properties:
  13. #    baseLocation - where things you are building against are installed
  14. #    bootclasspath - The base jars to compile against (typicaly rt.jar)
  15. #    configs - the list of {os, ws, arch} configurations to build.  
  16. #
  17. # Of course any of the settings here can be overridden by spec'ing 
  18. # them on the command line (e.g., -DbaseLocation=d:/eclipse
  19.  
  20. ############# PRODUCT/PACKAGING CONTROL #############
  21. product=/plugin or feature id/path/to/.product
  22. runPackager=true
  23.  
  24. # The prefix that will be used in the generated archive.
  25. archivePrefix=<output archive root>
  26.  
  27. # The location underwhich all of the build output will be collected.
  28. collectingFolder=${archivePrefix}
  29.  
  30. # The list of {os, ws, arch} configurations to build.  This 
  31. # value is a '&' separated list of ',' separate triples.  For example, 
  32. #     configs=win32,win32,x86 & linux,motif,x86
  33. # By default the value is *,*,*
  34. #config=win32, win32, x86 & \
  35. #    linux, gtk, ppc &\
  36. # linux, gtk, x86 & \
  37. #    linux, gtk, x86_64 & \
  38. #    linux, motif, x86 & \
  39. #    solaris, motif, sparc & \
  40. #    solaris, gtk, sparc & \
  41. #    aix, motif, ppc & \
  42. #    hpux, motif, PA_RISC & \
  43. #    macosx, carbon, ppc
  44.     
  45. #The format of the archive. By default a zip is created using antZip.
  46. #The list can only contain the configuration for which the desired format is different than zip.
  47. #archivesFormat=win32, win32, x86 - antZip& \
  48. #    linux, gtk, ppc - antZip &\
  49. #    linux, gtk, x86 - antZip& \
  50. #    linux, gtk, x86_64 - antZip& \
  51. # linux, motif, x86 - antZip& \
  52. #    solaris, motif, sparc - antZip& \
  53. #    solaris, gtk, sparc - antZip& \
  54. #    aix, motif, ppc - antZip& \
  55. #    hpux, motif, PA_RISC - antZip& \
  56. #    macosx, carbon, ppc - antZip
  57.     
  58. #Set to true if you want the output to be ready for an update jar (no site.xml generated)
  59. #outputUpdateJars = false
  60.  
  61. #Arguments to send to the zip executable
  62. zipargs=
  63.  
  64. #Arguments to send to the tar executable
  65. tarargs=
  66.  
  67.  
  68. ############## BUILD NAMING CONTROL ################
  69. # The directory into which the build elements are fetched and where
  70. # the build takes place.
  71. buildDirectory=${user.home}/eclipse.build
  72.  
  73. # Type of build.  Used in naming the build output.  Typically this value is
  74. # one of I, N, M, S, ...
  75. buildType=I
  76.  
  77. # ID of the build.  Used in naming the build output.
  78. buildId=TestBuild
  79.  
  80. # Label for the build.  Used in naming the build output
  81. buildLabel=${buildType}.${buildId}
  82.  
  83. # Timestamp for the build.  Used in naming the build output
  84. timestamp=007
  85.  
  86. #The value to be used for the qualifier of a plugin or feature when you want to override the value computed by pde.
  87. #The value will only be applied to plugin or features indicating build.properties, qualifier = context 
  88. #forceContextQualifier=<the value for the qualifier>
  89.  
  90. ############# BASE CONTROL #############
  91. # Settings for the base Eclipse components and Java class libraries 
  92. # against which you are building.
  93. # Base location for anything the build needs to compile against.  For example,
  94. # in most RCP app or a plug-in,  the baseLocation should be the location of a previously
  95. # installed Eclipse against which the application or plug-in code will be compiled.
  96.  
  97. #skipBase=true
  98. base=<path/to/parent/of/eclipse>
  99. baseLocation=${base}/eclipse
  100. #Os/Ws/Arch/nl of the eclipse specified by baseLocation
  101. baseos=win32
  102. basews=win32
  103. basearch=x86
  104.  
  105. eclipseURL=<url for eclipse download site>
  106. eclipseBuildId=<Id of Eclipse build to get>
  107. eclipseBaseURL=${eclipseURL}/eclipse-platform-${eclipseBuildId}-win32.zip
  108.  
  109.  
  110. ############# CVS CONTROL ################
  111. # The CVS tag to use when fetching the map files from the repository
  112.  
  113. #skipMaps=true
  114. mapsRepo=:pserver:anonymous@example.com/path/to/repo
  115. mapsRoot=path/to/maps
  116. mapsCheckoutTag=HEAD
  117.  
  118. #tagMaps=true
  119. mapsTagTag=v${buildId}
  120.  
  121. # The CVS tag to use when fetching elements to build.  By default the
  122. # builder will use whatever is in the maps.  Use this value to override
  123. # for example, when doing a nightly build out of HEAD
  124. # fetchTag=HEAD
  125. skipFetch=true
  126.  
  127.  
  128. ############# JAVA COMPILER OPTIONS ##############
  129. # The location of the Java jars to compile against.  Typically the rt.jar for your JDK/JRE
  130. bootclasspath=${java.home}/lib/rt.jar
  131.  
  132. # Whether or not to include debug info in the output jars
  133. javacDebugInfo=false 
  134.  
  135. # Whether or not to fail the build if there are compiler errors
  136. javacFailOnError=true
  137.  
  138. # Enable or disable verbose mode of the compiler
  139. javacVerbose=true
  140.  
  141. # Extra arguments for the compiler. These are specific to the java compiler being used.
  142. #compilerArg=
  143.  
  144. # The version of the source code
  145. #javacSource=1.3
  146.  
  147. # The version of the byte code targeted
  148. #javacTarget=1.1
  149.